home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Browser
- @Method: removePackage - removes a package from the browser.
- @Syntax: Browser.removePackage(p)
- @Summary: removePackage - removes a package from the browser
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("Browser.removePackage(p)", selection);
- editor.setActive("Insert Browser.removePackage");
- }
- }
-
- !!/Script
-